summaryrefslogtreecommitdiff
path: root/app/[lng]/evcp/(evcp)/email-template/page.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'app/[lng]/evcp/(evcp)/email-template/page.tsx')
-rw-r--r--app/[lng]/evcp/(evcp)/email-template/page.tsx7
1 files changed, 5 insertions, 2 deletions
diff --git a/app/[lng]/evcp/(evcp)/email-template/page.tsx b/app/[lng]/evcp/(evcp)/email-template/page.tsx
index 1ef3de6c..7219d523 100644
--- a/app/[lng]/evcp/(evcp)/email-template/page.tsx
+++ b/app/[lng]/evcp/(evcp)/email-template/page.tsx
@@ -1,6 +1,6 @@
import { getTemplatesAction } from '@/lib/mail/service';
import MailTemplatesClient from '@/components/mail/mail-templates-client';
-
+import { InformationButton } from '@/components/information/information-button';
export default async function MailTemplatesPage() {
// 서버에서 초기 데이터 가져오기
const result = await getTemplatesAction();
@@ -9,7 +9,10 @@ export default async function MailTemplatesPage() {
return (
<div className="container mx-auto p-6">
<div className="mb-8">
- <h1 className="text-3xl font-bold text-gray-900 mb-2">메일 템플릿 관리</h1>
+ <div className="flex items-center gap-2">
+ <h1 className="text-3xl font-bold text-gray-900 mb-2">메일 템플릿 관리</h1>
+ <InformationButton pageCode="evcp/email-template" />
+ </div>
<p className="text-gray-600">이메일 템플릿을 관리할 수 있습니다.</p>
</div>